Returns the current state information for the condition instance corresponding to the source and condition name, passing in the individual parameters for server location and its class. Also allows to retrieve specified event attributes.
Syntax
'Declaration
<ExtensionAttribute()>
<NotNullAttribute()>
Public Overloads Shared Function GetConditionState( _
ByVal As IEasyAEClient, _
ByVal As String, _
ByVal As String, _
ByVal As String, _
ByVal As String, _
ByVal () As Long _
) As AEConditionState
'Usage
Dim client As IEasyAEClient
Dim machineName As String
Dim serverClass As String
Dim qualifiedSourceName As String
Dim conditionName As String
Dim attributes() As Long
Dim value As AEConditionState
value = IEasyAEClientExtension.GetConditionState(client, machineName, serverClass, qualifiedSourceName, conditionName, attributes)
Parameters
- client
- The client object that will perform the operation.
This is typically the EasyAEClient object.
The value of this parameter cannot be null
(Nothing
in Visual Basic).
- machineName
- Name of the machine. Determines the computer on which the OPC server is located. It may be an empty string, in which case the OPC server is assumed to exist on the local computer or at the computer specified for it by DCOM configuration.
The value represents a UNC or DNS computer name. Any string can be passed to this parameter (i.e. will not cause System.ArgumentException), but not all values make sense and will work when an operation using them is attempted. IPv6 addresses are normally enclosed between '[' and ']'.
The value of this parameter cannot be null
(Nothing
in Visual Basic).
- serverClass
- Contains ProgID of the OPC server.
The value of this parameter cannot be null
(Nothing
in Visual Basic).
- qualifiedSourceName
- Fully qualified source name. A source name, as returned by browsing. The state of the condition instance associated with this source is returned.
The value of this parameter cannot be null
(Nothing
in Visual Basic).
- conditionName
- A condition name, as returned by querying. The state of this condition is returned.
The value of this parameter cannot be null
(Nothing
in Visual Basic).
- attributes
- Specifies the event attributes to be returned.
The value of this parameter cannot be null
(Nothing
in Visual Basic).
Return Value
If successful, the function returns a
AEConditionState object. The object contains information about the state of the condition.
This method never returns null
(Nothing
in Visual Basic).
Exceptions
Exception | Description |
System.ArgumentNullException |
A null reference (Nothing in Visual Basic) is passed to a method that does not accept it as a valid argument.
This is a usage error, i.e. it will never occur (the exception will not be thrown) in a correctly written program. Your code should not catch this exception. |
System.ArgumentOutOfRangeException |
The value of an argument is outside the allowable range of values as defined by the invoked method.
This is a usage error, i.e. it will never occur (the exception will not be thrown) in a correctly written program. Your code should not catch this exception. |
OpcLabs.EasyOpc.OperationModel.OpcException |
The OPC "Classic" (or OPC XML-DA) operation has failed. This operation exception in uniformly used to allow
common handling of various kinds of errors. The System.Exception.InnerException always contains
information about the actual error cause.
This is an operation error that depends on factors external to your program, and thus cannot be always avoided. Your code must handle it appropriately. |
Example
// This example shows how to obtain current state information for the condition instance corresponding to a Source and
// certain ConditionName.
//
// Find all latest examples here: https://opclabs.doc-that.com/files/onlinedocs/OPCLabs-OpcStudio/Latest/examples.html .
// OPC client and subscriber examples in C# on GitHub: https://github.com/OPCLabs/Examples-QuickOPC-CSharp .
// Missing some example? Ask us for it on our Online Forums, https://www.opclabs.com/forum/index ! You do not have to own
// a commercial license in order to use Online Forums, and we reply to every post.
using System;
using OpcLabs.EasyOpc.AlarmsAndEvents;
using OpcLabs.EasyOpc.OperationModel;
namespace DocExamples.AlarmsAndEvents._EasyAEClient
{
class GetConditionState
{
public static void Main1()
{
// Instantiate the client object.
var client = new EasyAEClient();
AEConditionState conditionState;
try
{
conditionState = client.GetConditionState("", "OPCLabs.KitEventServer.2",
"Simulation.ConditionState1", "Simulated");
}
catch (OpcException opcException)
{
Console.WriteLine("*** Failure: {0}", opcException.GetBaseException().Message);
return;
}
Console.WriteLine("ConditionState:");
Console.WriteLine(" .ActiveSubcondition: {0}", conditionState.ActiveSubcondition);
Console.WriteLine(" .Enabled: {0}", conditionState.Enabled);
Console.WriteLine(" .Active: {0}", conditionState.Active);
Console.WriteLine(" .Acknowledged: {0}", conditionState.Acknowledged);
Console.WriteLine(" .Quality: {0}", conditionState.Quality);
// Remark: IAEConditionState has many more properties
}
}
}
' This example shows how to obtain current state information for the condition instance corresponding to a Source and
' certain ConditionName.
'
' Find all latest examples here: https://opclabs.doc-that.com/files/onlinedocs/OPCLabs-OpcStudio/Latest/examples.html .
' OPC client and subscriber examples in VB.NET on GitHub: https://github.com/OPCLabs/Examples-QuickOPC-VBNET .
' Missing some example? Ask us for it on our Online Forums, https://www.opclabs.com/forum/index ! You do not have to own
' a commercial license in order to use Online Forums, and we reply to every post.
Imports OpcLabs.EasyOpc.AlarmsAndEvents
Imports OpcLabs.EasyOpc.OperationModel
Namespace AlarmsAndEvents._EasyAEClient
Friend Class GetConditionState
Public Shared Sub Main1()
Dim client = New EasyAEClient()
Dim conditionState As AEConditionState
Try
conditionState = client.GetConditionState("", "OPCLabs.KitEventServer.2", "Simulation.ConditionState1", "Simulated")
Catch opcException As OpcException
Console.WriteLine("*** Failure: {0}", opcException.GetBaseException().Message)
Exit Sub
End Try
Console.WriteLine("ConditionState:")
Console.WriteLine(" .ActiveSubcondition: {0}", conditionState.ActiveSubcondition)
Console.WriteLine(" .Enabled: {0}", conditionState.Enabled)
Console.WriteLine(" .Active: {0}", conditionState.Active)
Console.WriteLine(" .Acknowledged: {0}", conditionState.Acknowledged)
Console.WriteLine(" .Quality: {0}", conditionState.Quality)
' Remark: IAEConditionState has many more properties
End Sub
End Class
End Namespace
# This example shows how to obtain current state information for the condition instance corresponding to a Source and
# certain ConditionName.
#
# Find all latest examples here: https://opclabs.doc-that.com/files/onlinedocs/OPCLabs-OpcStudio/Latest/examples.html .
# OPC client and subscriber examples in Python on GitHub: https://github.com/OPCLabs/Examples-QuickOPC-Python .
# Missing some example? Ask us for it on our Online Forums, https://www.opclabs.com/forum/index ! You do not have to own
# a commercial license in order to use Online Forums, and we reply to every post.
# The QuickOPC package is needed. Install it using "pip install opclabs_quickopc".
import opclabs_quickopc
# Import .NET namespaces.
from OpcLabs.EasyOpc import *
from OpcLabs.EasyOpc.AlarmsAndEvents import *
from OpcLabs.EasyOpc.OperationModel import *
# Instantiate the client object
client = EasyAEClient()
print('Getting condition state...')
try:
conditionState = IEasyAEClientExtension.GetConditionState(client,
'', 'OPCLabs.KitEventServer.2', 'Simulation.ConditionState1', 'Simulated')
except OpcException as opcException:
print('*** Failure: ' + opcException.GetBaseException().Message)
exit()
print('ConditionState:')
print(' .ActiveSubcondition: ', conditionState.ActiveSubcondition)
print(' .Enabled: ', conditionState.Enabled)
print(' .Active: ', conditionState.Active)
print(' .Acknowledged: ', conditionState.Acknowledged)
print(' .Quality: ', conditionState.Quality)
# Note that IAEConditionState has many more properties
print()
print('Finished.')
Requirements
Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows
See Also